home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / dev / cross / ava-0.2.5.lha / ava-0.2.5 / avalib / target.inc < prev   
Encoding:
Text File  |  1999-03-23  |  770 b   |  37 lines

  1. /*
  2.     target.inc
  3.  
  4.     Default Target Specification
  5.     You should create your own target.inc file containing
  6.     the:
  7.       * CPU type (#arch <deviceName>)
  8.       * additional include files, that are required by your C programs
  9.       * additional segment allocation, if memory mapped port are 
  10.         present in your system
  11.  
  12.     and include it in every assembler source.
  13.  
  14.     Uros Platise, (c) 24. Januar 1999
  15. */
  16.  
  17. #ifndef __TARGET
  18. #define __TARGET
  19.  
  20. /* your memory size if present */
  21. ;#define __ERAM_SIZE
  22.  
  23. /* your chip */
  24. ;#arch AT90S8515
  25.  
  26. /* additional default include directories */
  27. ;#adddir "..."
  28.  
  29. /* additional include files */
  30. ;#include "..."
  31.  
  32. /* put your declarations here of the memory mapped ports and 
  33.    other memory holes that should not be used by ava */
  34. ;seg abs=? size=? eram.?
  35.  
  36. #endif
  37.